home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / src / exampleCode / opengl / utilities / isfast / libisfast / isfast.h < prev    next >
C/C++ Source or Header  |  1996-11-11  |  693b  |  37 lines

  1. /*****************************************************************************
  2.  * isfast - routines for *subjective* tests of OpenGL performance
  3.  *****************************************************************************/
  4.  
  5.  
  6.  
  7. #ifndef __ISFAST_H__
  8. #define __ISFAST_H__
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12.  
  13.  
  14. int IsFastOpenWindow(const char* attributes, const char* title);
  15. void IsFastCloseWindow(void);
  16.  
  17. int DepthBufferingIsFast(void);
  18. int ImmediateModeIsFast(void);
  19. int StencillingIsFast(void);
  20. int TextureMappingIsFast(void);
  21.  
  22.  
  23.  
  24. #ifdef X11
  25. int IsFastXOpenDisplay(const char* displayName);
  26. void IsFastXCloseDisplay(void);
  27. #endif
  28.  
  29.  
  30.  
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34. #endif /* !__ISFAST_H__ */
  35.  
  36.  
  37.